f3352072518ec08cb1660b2b8e3f3616d2bb9933,src/main/java/com/easypost/model/Shipment.java,Shipment,newRates,#,179
Before Change
// get rates
public void newRates() throws EasyPostException {
this.newRates(null, null);
}
public void newRates(Map<String, Object> params) throws EasyPostException {
this.newRates(params, null);
After Change
// get rates
public Shipment newRates() throws EasyPostException {
return this.newRates(null, null);
}
public Shipment newRates(Map<String, Object> params) throws EasyPostException {
return this.newRates(params, null);